Fixing building on Qt\5.3\msvc2013_64_opengl.

--HG--
branch : develop
This commit is contained in:
Roman Telezhynskyi 2016-08-13 11:56:59 +03:00
parent 19b880ad76
commit db138cd6e7
3 changed files with 7 additions and 7 deletions

View File

@ -43,9 +43,9 @@
#include "dl_attributes.h" #include "dl_attributes.h"
#include "dl_codes.h" #include "dl_codes.h"
#include "dl_writer_ascii.h" #include "dl_writer_ascii.h"
#include "dxflib/../dxfdef.h" #include "../dxfdef.h"
#include "dxflib/dl_creationinterface.h" #include "dl_creationinterface.h"
#include "dxflib/dl_entities.h" #include "dl_entities.h"
#include "iostream" #include "iostream"
/** /**

View File

@ -27,8 +27,8 @@
#include <ctype.h> #include <ctype.h>
#include <algorithm> #include <algorithm>
#include "dxflib/dl_attributes.h" #include "dl_attributes.h"
#include "dxflib/dl_codes.h" #include "dl_codes.h"
/** /**
* @param version DXF version. Defaults to DL_VERSION_2002. * @param version DXF version. Defaults to DL_VERSION_2002.

View File

@ -27,7 +27,7 @@
#define DL_WRITER_ASCII_H #define DL_WRITER_ASCII_H
#include "dl_global.h" #include "dl_global.h"
#include "dxflib/dl_codes.h" #include "dl_codes.h"
#if defined(Q_CC_MSVC) #if defined(Q_CC_MSVC)
#if (_MSC_VER > 1000) #if (_MSC_VER > 1000)
@ -43,7 +43,7 @@
/** /**
* Implements functions defined in DL_Writer for writing low * Implements functions defined in DL_Writer for writing low
* level DXF constructs to an ASCII format DXF file. * level DXF constructs to an ASCII format DXF file.
* *
* @para fname File name of the file to be created. * @para fname File name of the file to be created.
* @para version DXF version. Defaults to DL_VERSION_2002. * @para version DXF version. Defaults to DL_VERSION_2002.
* *