#include "vcl.fctreeview.hpp"
#include "RM_Class.hpp"
#include "RM_Common.hpp"

这样可以

#include "RM_Class.hpp"
#include "RM_Common.hpp"
#include "vcl.fctreeview.hpp"

这样就不可以了

17error

[bcc32 Error] vcl.fccanvas.hpp(34): E2184 Enum syntax error
[bcc32 Error] vcl.fccanvas.hpp(34): E2040 Declaration terminated incorrectly
[bcc32 Error] vcl.fccanvas.hpp(36): E2451 Undefined symbol 'TwwRectSide'
[bcc32 Error] vcl.fccanvas.hpp(36): E2090 Qualifier 'TwwRectSide' is not a class or namespace name
[bcc32 Error] vcl.fccanvas.hpp(36): E2401 Invalid template argument list
[bcc32 Error] vcl.fccanvas.hpp(36): E2270 > expected
[bcc32 Error] vcl.fccanvas.hpp(36): E2040 Declaration terminated incorrectly
[bcc32 Error] vcl.fccanvas.hpp(69): E2190 Unexpected }
[bcc32 Error] vcl.fccanvas.hpp(70): E2190 Unexpected }
[bcc32 Error] vcl.fctreeview.hpp(438): E2316 'TfcCanvas' is not a member of 'Fccanvas'
[bcc32 Error] vcl.fctreeview.hpp(438): E2040 Declaration terminated incorrectly
[bcc32 Error] vcl.fctreeview.hpp(439): E2316 'TfcCanvas' is not a member of 'Fccanvas'
[bcc32 Error] vcl.fctreeview.hpp(439): E2040 Declaration terminated incorrectly
[bcc32 Error] vcl.fctreeview.hpp(558): E2316 'TfcCanvas' is not a member of 'Fccanvas'
[bcc32 Error] vcl.fctreeview.hpp(558): E2040 Declaration terminated incorrectly
[bcc32 Error] vcl.fctreeview.hpp(678): E2316 'TfcCanvas' is not a member of 'Fccanvas'
[bcc32 Error] vcl.fctreeview.hpp(678): E2040 Declaration terminated incorrectly

找到代码

[bcc32 Error] vcl.fccanvas.hpp(34): E2184 Enum syntax error

enum DECLSPEC_DENUM TwwRectSide : unsigned char { rsLeft, rsTop, rsRight, rsBottom };

找谁了,惹谁了!!冲突了

Berlin,a project

[bcc32 Error] System.ZLib.hpp(310): E2040 Declaration terminated incorrectly

extern DELPHI_PACKAGE char *ZLIB_VERSION; //注释掉得了

发现是单元文件包含了头文件

#include <Vcl.Imaging.pngimage.hpp>

就报错了,但是新建一个空白工程,包含此投文件不报错。这个头文件里包括了#include <System.ZLib.hpp>

Declaration terminated incorrectly 讨厌 这样就不可以了的更多相关文章

  1. E2040 Declaration terminated incorrectly - System.ZLib.hpp(310) ZLIB_VERSION

    [bcc32 Error] System.ZLib.hpp(310): E2040 Declaration terminated incorrectly  Full parser context    ...

  2. devexpress v14.2.3 发布

    补丁而已. New Major Features in 14.2 What's New in VCL Products 14.2 Breaking Changes To learn about bre ...

  3. cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be found for element 'mvc:annotation-driven'.

    spring 配置文件报错报错信息:cvc-complex-type.2.4.c: The matching wildcard is strict, but no declaration can be ...

  4. "Installation failed !" in GUI but not in CLI (/usr/bin/winusb: line 78: 18265 Terminated )

    "Installation failed !" in GUI but not in CLI (/usr/bin/winusb: line 78: 18265 Terminated ...

  5. ubuntu 14.04 ns2.35 ***buffer overflow detected **: ns terminated解决办法

    1.按照如下教程安装 Install With Me !: How to Install NS-2.35 in Ubuntu-13.10 / 14.04 (in 4 easy steps) 2.运行一 ...

  6. TypeScript Declaration Merging(声明合并)

    TypeScript中有一些独特的概念,来自需要描述JavaScript对象类型发生了哪些变化.举个例子,最为独特的概念就是"声明合并".理解了这个概念将会对你在当前JavaScr ...

  7. 在chrome 总调试cordova出现Detached from the target. Remote debugging has been terminated with reason: Connection lost. Please re-attach to the new target

    在chrome 总调试cordova出现如下错误: "Detached from the target. Remote debugging has been terminated with ...

  8. java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.FutureTask@1f303192 rejected from java.util.concurrent.ThreadPoolExecutor@11f7cc04[Terminated, pool size = 0, active threads

    java.util.concurrent.RejectedExecutionException: Task java.util.concurrent.FutureTask@1f303192 rejec ...

  9. spring cvc-elt.1: Cannot find the declaration of element 'beans'解决办法

    转载自http://blog.csdn.net/legendj/article/details/9950963 今天在写spring aop示例的时候,在spring.xml文件中添加spring a ...

随机推荐

  1. MySQL删除超大表操作

    ======================================================================== 问题原因 通常情况下,会使用innodb_file_p ...

  2. apache隐藏web服务器的版本信息

    curl -I yourdomain.com 能看到什么? Server: Apache xxx PHP xxx XXX xxx 我们不妨看看 curl -I www.google.com 结果如何: ...

  3. java设计模式--创建型模式(一)

    2016-04-24 10:10:34 创建型模式:工厂方法模式.抽象工厂模式.单例模式.建造者模式.原型模式 注意:工厂模式可以分为三类: 1)简单工厂模式(Simple Factory) 2)工厂 ...

  4. Vquery PHP 简单爬虫类

    http://www.thinkphp.cn/topic/36693.html 在使用php进行网页抓取的时候你有没有感觉到用起来比较麻烦呢?目前我还没有发现php有这样针对网页抓取的类,每次用到这个 ...

  5. php preg_replace空格无法替换问题

    一次坑爹的小bug.读取一段文字(编码utf-8),想替换掉空格,str_replace(" "..).preg_replace("/\s/"..)都不起作用. ...

  6. Servlet 实现网页计数器

    创建CounterSerlet, 使用getServletContext,ServletContext 从request.getSession().getServletContext();获得 @We ...

  7. 【appium】根据xpath定位元素

    1. 背景 本文尝试使用的试验对象是SDK自带的NotePad应用实例,假设已经有两个Notes分别是“note1”和“note2”添加到Notepad上面,我们要做的就是尝试用xpath的方法来定位 ...

  8. CentOS6.5 搭建在线yum源

    CentOS6.5 搭建在线yum源 发布时间:  2017-04-21 浏览次数:  611 下载次数:  1  问题描述 尽管有很多的免费镜像提供yum源服务,但是还是有必要建立自己的yum服务器 ...

  9. maven教程基础

    一.Maven介绍 我们在开发项目的过程中,会使用一些开源框架.第三方的工具等等,这些都是以jar包的方式被项目所引用,并且有些jar包还会依赖其他的jar包,我们同样需要添加到项目中,所有这些相关的 ...

  10. Oracle学习操作(6)函数与存储过程

    一.oracle自定义函数 1.不带参数的函数: 返回t_book表的总条数: SQL> create function getBookCount return number as begin ...