Guest User

Untitled

a guest
Oct 17th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. class Model{
  2. std::vector<std::string> variables;
  3. std::string variableName;
  4. public:
  5. std::string modelName;
  6. std::vector<std::string> inputs;
  7. std::vector<std::string> outputs;
  8. int identNum;
  9. void assignVariable(AdjList adj);
  10. };
  11.  
  12. void addModel(std::string name, std::vector<std::string> inputs, std::vector<std::string> outputs);
Add Comment
Please, Sign In to add comment