diff options
| author | Carl Hetherington <cth@carlh.net> | 2013-01-09 21:41:06 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2013-01-09 21:41:06 +0000 |
| commit | 7f8062032e16d9c9cfc28659a6da67f8205dc27b (patch) | |
| tree | e6315a838adcb34f3ac2cf2a517e84ea956e891d /src/lib/cinema.h | |
| parent | 29d863fb2533fe754a82a5274caf19a3b19e2994 (diff) | |
Basic cinema / screen database.
Diffstat (limited to 'src/lib/cinema.h')
| -rw-r--r-- | src/lib/cinema.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/cinema.h b/src/lib/cinema.h index 232fc5ec8..02b38c496 100644 --- a/src/lib/cinema.h +++ b/src/lib/cinema.h @@ -14,10 +14,12 @@ public: class Cinema { public: - Cinema (std::string const & n) + Cinema (std::string const & n, std::string const & e) : name (n) + , email (e) {} std::string name; - std::list<Screen> screens; + std::string email; + std::list<boost::shared_ptr<Screen> > screens; }; |
