blob: 5bf7b10fcb957ebb3585e7878354d240a0666671 [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 Carlstrom69b15fb2011-09-03 12:25:21 -07007const byte ImageHeader::kImageMagic[] = { 'o', 'a', 't', '\n' };
Brian Carlstrom4a289ed2011-08-16 17:17:49 -07008const byte ImageHeader::kImageVersion[] = { '0', '0', '1', '\0' };
9
10} // namespace art