COOPY » Guide
version 0.6.5
|
00001 #ifndef COOPY_SHEETVIEW 00002 #define COOPY_SHEETVIEW 00003 00004 #include <coopy/DataSheet.h> 00005 #include <coopy/NameSniffer.h> 00006 00007 namespace coopy { 00008 namespace store { 00009 class SheetView; 00010 } 00011 } 00012 00013 class coopy::store::SheetView { 00014 public: 00015 DataSheet& sheet; 00016 NameSniffer& meta; 00017 std::string sha1; 00018 00019 SheetView(DataSheet& sheet, NameSniffer& meta, const std::string &sha1) : 00020 sheet(sheet), meta(meta), sha1(sha1) { 00021 } 00022 }; 00023 00024 #endif