17 lines
242 B
C++
17 lines
242 B
C++
#pragma once
|
|
|
|
#include "PRO_Sys.h"
|
|
#include "PRO_Data.h"
|
|
|
|
class CProfile
|
|
{
|
|
public:
|
|
int GetLockedProfile();
|
|
void SetLockedProfile(int iProf);
|
|
|
|
CSys m_Sys;
|
|
CProfileData m_ProfileData;
|
|
};
|
|
|
|
// Singleton
|
|
extern CProfile InternalProfileManager; |