最近我问了关于编写here的层次结构头文件的问题。我得到了答案,并将其标记为解决方案。但过了一段时间,我对这个话题还有其他问题。嵌套类型怎么样?我希望在我的类型层次结构的头文件中,还显示了嵌套类型。例如(请阅读TODO):
/*
hierarchy.h
© Andrey Bushman, 12 July 2013
This file contains the full hierarchy of this application's types. This file
must be included into the each header file of this application.
*/
//-----------------------------------------------------------------------------
#ifndef BUSH_HIERARCHY_H
#define BUSH_HIERARCHY_H
#include <iostream>
#include <string>
#include <exception>
//*****************************************************************************
namespace Bushman{
//*****************************************************************************
namespace Common{
// run-time checked narrowing cast (type conversion)
template <class R, class A> inline R narrow_cast(const A& a);
// Throw the exception with the msg message.
void error(const std::string& msg);
}
//*****************************************************************************
namespace CAD_Calligraphy{
class Shp_istream; // Stream for SHP file reading.
class Shp_ostream; // Stream for SHP file writing.
class Token; // Token of the SHP file.
// TODO: The next both rows is not allowed (for nested types):
enum Token::Type; // Type of Token item.
class Token::Some_inner_class; // Class for internal use in the Token.
}
//*****************************************************************************
}
#endif
如果没有嵌套类型,我的类型层次结构将不完整。我该如何解决这个问题?
P.S。我可以在评论中写一个关于嵌套类型的信息。我认为这是单一的解决方案。我是对的吗?
谢谢。
答案 0 :(得分:0)
您无法转发嵌套类型。作为一种解决方法,您可以将它们移动到单独的命名空间,但这就是全部。