Brian Carlstrom | 4a289ed | 2011-08-16 17:17:49 -0700 | [diff] [blame^] | 1 | // Copyright 2011 Google Inc. All Rights Reserved. |
2 | |||||
3 | #include "image.h" | ||||
4 | |||||
5 | namespace art { | ||||
6 | |||||
7 | const byte ImageHeader::kImageMagic[] = { 'i', 'm', 'g', '\n' }; | ||||
8 | const byte ImageHeader::kImageVersion[] = { '0', '0', '1', '\0' }; | ||||
9 | |||||
10 | } // namespace art |