Add vector include and remove extra qualification on s_InitFlags.

This commit is contained in:
Gary Preston 2016-02-16 19:01:14 +00:00
parent f679f26ac0
commit cb44c01ad4

View file

@ -18,6 +18,7 @@
#ifndef NLPIPELINE_PROJECT_CONFIG_H #ifndef NLPIPELINE_PROJECT_CONFIG_H
#define NLPIPELINE_PROJECT_CONFIG_H #define NLPIPELINE_PROJECT_CONFIG_H
#include <nel/misc/types_nl.h> #include <nel/misc/types_nl.h>
#include <vector>
namespace NLMISC { namespace NLMISC {
class CConfigFile; class CConfigFile;
@ -65,7 +66,7 @@ private:
static TPathString s_ProjectConfigPath; static TPathString s_ProjectConfigPath;
static std::string s_ProjectName; static std::string s_ProjectName;
static CProjectConfig::Flags CProjectConfig::s_InitFlags; static CProjectConfig::Flags s_InitFlags;
static std::vector<TPathString> s_ConfigPaths; static std::vector<TPathString> s_ConfigPaths;
static std::vector<NLMISC::CConfigFile *> s_ConfigFiles; static std::vector<NLMISC::CConfigFile *> s_ConfigFiles;