blob: c610c8a1314802b206c91b6fec72b10eb4c86eeb [file] [log] [blame]
Brian Carlstrom4a289ed2011-08-16 17:17:49 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3#include "image.h"
4
5namespace art {
6
Brian Carlstrome24fa612011-09-29 00:53:55 -07007const byte ImageHeader::kImageMagic[] = { 'a', 'r', 't', '\n' };
Brian Carlstrom4a289ed2011-08-16 17:17:49 -07008const byte ImageHeader::kImageVersion[] = { '0', '0', '1', '\0' };
9
10} // namespace art