00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef BLOCKS_FWD_H
00016 #define BLOCKS_FWD_H
00017
00018 #include <cstddef>
00019 #include <vector>
00020
00021 namespace atlas {
00022
00023
00024
00025 namespace blocks {
00026
00027 class Block;
00028
00029 typedef unsigned int BlockElt;
00030 typedef std::vector<BlockElt> BlockEltList;
00031 typedef std::pair<BlockElt,BlockElt> BlockEltPair;
00032 typedef std::vector<BlockEltPair> BlockEltPairList;
00033
00034 }
00035
00036 }
00037
00038 #endif