IT/프로그래밍 관련

Configuration Files 쉽게 사용하기

KSI 2005. 10. 21. 21:02
Confi-3443.zip

파일 다운로드 해서 사용하면 됨.

사용법


-소스-

#include "ConfigFile.h"

#include <iostream>

int main() {
  ConfigFile cf("config.txt");

  std::string foo;
  std::string water;
  double      four;

  foo   = cf.Value("section_1","foo"  );
  water = cf.Value("section_2","water");
  four  = cf.Value("section_2","four" );

  std::cout << foo   << std::endl;
  std::cout << water << std::endl;
  std::cout << four  << std::endl;

  return 0;
}




-CFG 파일-

[section_1]

; 주석임.

; 섹션1
foo  = bar

water= h2o

[section_2]

foo  = foo

water= wet

four = 4.2

원본 출처는http://www.adp-gmbh.ch/cpp/config_file.html 임.