view tests/IConfig.cpp @ 72:d9a923a961e7

I forgotten to update test
author daedric <d43dr1c@gmail.com>
date Wed, 31 Mar 2010 18:18:15 +0200
parents 360da757ccb0
children
line wrap: on
line source

#include <utility>

#include "IConfig.hpp"

int main(void)
{
    zia::api::IConfig::ValueMap map;

    map["section"].insert(std::make_pair("key","value"));
    return (0);
}