logic: visual studio solution parsing
Can now parse visual studio solutions. VS Plugin can send a command, parsing is implemented in Coati. Some minor changes: added project file icon, added language check to vs plugin
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#ifndef MESSAGE_NEW_PROJECT_H
|
||||
#define MESSAGE_NEW_PROJECT_H
|
||||
|
||||
#include "utility/messaging/Message.h"
|
||||
|
||||
class MessageNewProject : public Message<MessageNewProject>
|
||||
{
|
||||
public:
|
||||
MessageNewProject(const std::string& projectName, const std::string projectLocation,
|
||||
const std::vector<std::string>& sourceFiles, const std::vector<std::string>& includePaths)
|
||||
: projectName(projectName)
|
||||
, projectLocation(projectLocation)
|
||||
, projectSourceFiles(sourceFiles)
|
||||
, projectIncludePaths(includePaths)
|
||||
{
|
||||
}
|
||||
|
||||
static const std::string getStaticType()
|
||||
{
|
||||
return "MessageNewProject";
|
||||
}
|
||||
|
||||
virtual void print(std::ostream& os) const
|
||||
{
|
||||
}
|
||||
|
||||
const std::string projectName;
|
||||
const std::string projectLocation;
|
||||
const std::vector<std::string> projectSourceFiles;
|
||||
const std::vector<std::string> projectIncludePaths;
|
||||
};
|
||||
|
||||
#endif // MESSAGE_NEW_PROJECT_H
|
||||
Reference in New Issue
Block a user