first stage for my plugin

--HG--
branch : gsoc2011-translationovqt
This commit is contained in:
cemycc 2011-05-25 00:06:07 +03:00
parent 61716ad67b
commit f47f5a3799
2 changed files with 6 additions and 5 deletions

View file

@ -4,4 +4,5 @@ ADD_SUBDIRECTORY(ovqt_sheet_builder)
ADD_SUBDIRECTORY(log) ADD_SUBDIRECTORY(log)
ADD_SUBDIRECTORY(disp_sheet_id) ADD_SUBDIRECTORY(disp_sheet_id)
ADD_SUBDIRECTORY(object_viewer) ADD_SUBDIRECTORY(object_viewer)
ADD_SUBDIRECTORY(zone_painter) ADD_SUBDIRECTORY(zone_painter)
ADD_SUBDIRECTORY(translation_manager)

View file

@ -27,8 +27,8 @@ namespace NL3D
{ {
class CPSAttribMakerBase; class CPSAttribMakerBase;
} }
namespace NLQT namespace NLQT
{ {
class CSchemeManager class CSchemeManager
@ -51,11 +51,11 @@ public:
// rename a scheme, given a pointer on it // rename a scheme, given a pointer on it
void rename(NL3D::CPSAttribMakerBase *am, const std::string &newName); void rename(NL3D::CPSAttribMakerBase *am, const std::string &newName);
protected: protected:
typedef std::pair<std::string, NL3D::CPSAttribMakerBase *> TSchemeInfo; // typedef std::pair<std::string, NL3D::CPSAttribMakerBase *> TSchemeInfo;
typedef std::multimap<std::string, TSchemeInfo> TSchemeMap; typedef std::multimap<std::string, TSchemeInfo> TSchemeMap;
TSchemeMap _SchemeMap; TSchemeMap _SchemeMap;
}; };
} /* namespace NLQT */ } /* namespace NLQT */
#endif #endif