netinfoprefssource.h

来自「跨操作系统的微型中间件」· C头文件 代码 · 共 36 行

H
36
字号
/*    File:       NetInfoPrefsSource.h    Contains:   Implements the PrefsSource interface wrt NetInfo database    Written by: Denis Serenyi    Change History (most recent first):    */#ifndef __NETINFOPREFSSOURCE_H__#define __NETINFOPREFSSOURCE_H__#include "PrefsSource.h"#include "OSHeaders.h"class NetInfoPrefsSource : public PrefsSource{    public:            NetInfoPrefsSource();        virtual ~NetInfoPrefsSource() {}            virtual int     GetValue(const char* inKey, char* ioValue);        virtual int     GetValueByIndex(const char* inKey, UInt32 inIndex, char* ioValue);        void    SetValue(char* inKey, char* inValue);        void    SetValueByIndex(char* inKey, char* inValue, UInt32 inIndex);};#endif //__NETINFOPREFSSOURCE_H__

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?