COMPASSi/trunk/code/inc/DataManager/Logic/Logic.DataManagement/Interpreters/ModifyInterpreter.h

24 lines
597 B
C
Raw Normal View History

2025-06-25 15:06:42 +08:00
#ifndef MODIFY_INTERPRETER_H
#define MODIFY_INTERPRETER_H
#include "ObjectInterpreter.h"
#include <vector>
#include <string>
#include <memory>
#include "DataManager.h"
class DATAMANAGER_DLL_API_EXPORTS DelInterpreter : public ObjectInterpreter {
public:
DelInterpreter();
void ExecuteCommand(std::vector<std::string> &commandLines, std::vector<Empty> &lst, std::vector<std::string>& names);
void sortList(std::vector<Empty> &lst);
vector<int> sortListByDependent(vector<int> lst);
bool IsDependentByID(int deriveID, int srcID);
private:
};
#endif // MODIFY_INTERPRETER_H