storage.h 206 字节
Newer Older
S
superjom 已提交
1 2 3 4 5 6 7 8 9 10 11 12
#ifndef VISUALDL_STORAGE_H
#define VISUALDL_STORAGE_H

class Storage {
 public:
  Storage& Global() {
    static Storage* instance = new Storage();
    return *instance;
  }
};

#endif //VISUALDL_STORAGE_H