view tests/IEndPoint.cpp @ 66:86584ae719fc

Fix problem with header fixed #8, add test for all header fix #9, #11
author daedric <d43dr1c@gmail.com>
date Tue, 30 Mar 2010 23:02:51 +0200
parents
children 360da757ccb0
line wrap: on
line source

/*
 * IEndPoint.cpp
 *
 *  Created on: 30 mars 2010
 *      Author: Daedric
 */

#include "network/IEndPoint.hpp"

using namespace zia::api::network;

int main(int, char**)
{
    IEndPoint::Ip ip = 123;
    IEndPoint::Port port= 8000;
    IEndPoint::Socket socket = 1234;
    IEndPoint::IAddress addr = "salut";

    (void)ip;
    (void)port;
    (void)socket;
    (void)addr;

    return (0);
}