alec

Abstraction Layer for Escape Codes
git clone git://git.dimitrijedobrota.com/alec.git
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING |

generator.h (303B)


1 #pragma once 2 3 #include <string> 4 #include <vector> 5 6 namespace alec 7 { 8 9 struct record 10 { 11 std::string name; 12 std::vector<std::string> args; 13 std::vector<std::string> rules; 14 std::vector<std::string> recipe; 15 16 bool operator<(const record& rhs) const { return name < rhs.name; } 17 }; 18 19 } // namespace alec