Rev 1741 | Rev 1939 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | SVN | RSS feed
| Rev 1741 | Rev 1898 | ||
|---|---|---|---|
| Line 32... | Line 32... | ||
| 32 | 32 | ||
| 33 | logging::Logger Storage::LOG("vm::plugin::storage"); |
33 | logging::Logger Storage::LOG("vm::plugin::storage"); |
| 34 | 34 | ||
| 35 | Storage::Storage(boost::asio::io_service& io_service) : Plugin(io_service) |
35 | Storage::Storage(boost::asio::io_service& io_service) : Plugin(io_service) |
| 36 | { |
36 | { |
| 37 | this->name_ = " |
37 | this->name_ = "storage"; |
| 38 | 38 | ||
| 39 | this->ExportFunction("StorageExport_GetParameters", Storage::Export_GetParameters); |
39 | this->ExportFunction("StorageExport_GetParameters", Storage::Export_GetParameters); |
| 40 | this->ExportFunction("StorageExport_GetParameter", Storage::Export_GetParameter); |
40 | this->ExportFunction("StorageExport_GetParameter", Storage::Export_GetParameter); |
| 41 | this->ExportFunction("StorageExport_SetParameter", Storage::Export_SetParameter); |
41 | this->ExportFunction("StorageExport_SetParameter", Storage::Export_SetParameter); |
| 42 | } |
42 | } |