23 lines
454 B
C++
23 lines
454 B
C++
/*
|
|
* Forward Declarations
|
|
* Nana C++ Library(http://www.nanapro.org)
|
|
* Copyright(C) 2003-2015 Jinhao(cnjinhao@hotmail.com)
|
|
*
|
|
* Distributed under the Boost Software License, Version 1.0.
|
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
|
* http://www.boost.org/LICENSE_1_0.txt)
|
|
*
|
|
* @file: nana/fwd.hpp
|
|
*
|
|
*/
|
|
|
|
#ifndef NANA_FWD_HPP
|
|
#define NANA_FWD_HPP
|
|
|
|
namespace nana
|
|
{
|
|
class filebox;
|
|
class msgbox;
|
|
}//end namespace nana
|
|
#endif //NANA_FWD_HPP
|