summaryrefslogtreecommitdiff
path: root/s_ncur.h
blob: 8ced4a66bf565cff655ba41ee61a54e9912e56aa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef S_NCUR_H
#define S_NCUR_H

#include "ncur.h"

using namespace std;

class s_ncur
{
private:
    static ncur* obj;

public:
    static void init()
    {
        obj = new ncur();
    }

    static ncur& get
        ()
    {
        return *obj;
    }
};

#endif