X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Fglobal.h;h=93ad6f7f9484a23ecdba2b373f60413b587cb37f;hb=bf5a50feb0f84a4627a65c5b82c3ca2d2eefe54b;hp=cdcd204e800d153b67ce45eb39f0073b41b3a4e3;hpb=97cfdecd62ced6cb1237a9ac6c7cbce2092fde99;p=architektonas diff --git a/src/global.h b/src/global.h index cdcd204..93ad6f7 100644 --- a/src/global.h +++ b/src/global.h @@ -14,6 +14,10 @@ class QFont; enum LineStyle { LSNone, LSSolid, LSDash, LSDot, LSDashDot, LSDashDotDot }; +typedef std::vector VPVector; +typedef std::vector::iterator VPVectorIter; +typedef std::vector BVector; +typedef std::vector SVector; class Global { @@ -56,9 +60,9 @@ class Global static int activeLayer; static int numLayers; - static std::vector layerHidden; - static std::vector layerLocked; - static std::vector layerName; + static BVector layerHidden; + static BVector layerLocked; + static SVector layerName; }; #endif // __GLOBALS_H__