MSPUBBlockType.h
Go to the documentation of this file.
00001 /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
00002 /*
00003  * This file is part of the libmspub project.
00004  *
00005  * This Source Code Form is subject to the terms of the Mozilla Public
00006  * License, v. 2.0. If a copy of the MPL was not distributed with this
00007  * file, You can obtain one at http://mozilla.org/MPL/2.0/.
00008  */
00009 
00010 #ifndef __MSPUBBLOCKTYPE_H__
00011 #define __MSPUBBLOCKTYPE_H__
00012 
00013 namespace libmspub
00014 {
00015 enum MSPUBBlockType //Please fill this in and replace magic constants in MSPUBParser accordingly as you discover what a given block type means!
00016 {
00017   TRAILER_DIRECTORY = 0x90,
00018   GENERAL_CONTAINER = 0x88,
00019   STRING_CONTAINER  = 0xc0,
00020   DUMMY             = 0x78,
00021   SHAPE_SEQNUM      = 0x70
00022 };
00023 } // namespace libmspub
00024 
00025 #endif /* __MSPUBBLOCKTYPE_H__ */
00026 /* vim:set shiftwidth=2 softtabstop=2 expandtab: */