| 54 | const std::string BundleArchive::AUTOSTART_SETTING_ACTIVATION_POLICY = "activation_policy"; |
| 55 | |
| 56 | BundleArchive::BundleArchive() |
| 57 | : storage(nullptr) |
| 58 | , bundleId(0) |
| 59 | , lastModified(now()) |
| 60 | , autostartSetting(-1) |
| 61 | , manifest(any_map::UNORDERED_MAP_CASEINSENSITIVE_KEYS) |
| 62 | { |
| 63 | } |
| 64 | |
| 65 | BundleArchive::BundleArchive(BundleStorage* storage, |
| 66 | std::shared_ptr<BundleResourceContainer> resourceContainer, |