Horus Doc || C++ Reference || Class Overview   Pixels   Images   Detector   Geometry   Registry || Doxygen's quick Index  

HxSizes.h

Go to the documentation of this file.
00001 /*
00002  *  Copyright (c) 1998, University of Amsterdam, The Netherlands.
00003  *  All rights reserved.
00004  *
00005  *
00006  *  Author(s):
00007  *  Dennis Koelma (koelma@wins.uva.nl)
00008  *  Edo Poll (poll@wins.uva.nl)
00009  */
00010 
00013 #ifndef HxSizes_h
00014 #define HxSizes_h
00015 
00016 #include "HxVec3Int.h"
00017 #include "HxString.h"
00018 
00019 
00024 typedef HxVec3Int HxSizes;
00025 
00026 inline HxString
00027 makeString(const HxSizes& s)
00028 {
00029     return s.toString();
00030 }
00031 
00032 inline const char*
00033 ClassName(const HxSizes&)
00034 {
00035     return "HxSizes";
00036 }
00037 
00038 /*
00039 class HxSizes : public HxVec3Int
00040 {
00041 public:
00042     HxSizes(const HxVec3Int& v) : HxVec3Int(v) {}
00043     HxSizes(int x = 1, int y = 1, int z = 1) : HxVec3Int(x, y, z) {}
00044 };
00045 */
00046 
00047 #endif

Generated on Mon Jan 27 15:48:48 2003 for C++Reference by doxygen1.2.12 written by Dimitri van Heesch, © 1997-2001