Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/objecthierarchy/visual_studio/vc8/directories.vsprops @ 2017

Last change on this file since 2017 was 2017, checked in by rgrieder, 16 years ago

Changed conversion_cast≠() to omni_cast≠() and added support for dynamic_cast.
Whenever you want to convert 2 pointers, it uses static_cast if the conversion is implicit (derived to base class) and dynamic_cast otherwise.
There is a drawback however: When static_cast is not possible and at least one of the two pointers is not from a polymorphic class, you get a compiler error that tells you exactly this. But who would want to convert an int* to OrxonoxClass* ?

File size: 511 bytes
Line 
1<?xml version="1.0" encoding="Windows-1252"?>
2<VisualStudioPropertySheet
3        ProjectType="Visual C++"
4        Version="8.00"
5        Name="directories"
6        OutputDirectory="$(RootDir)bin\$(SolutionName)\$(ConfigurationName)\"
7        IntermediateDirectory="$(RootDir)build\$(SolutionName)\$(ConfigurationName)\$(ProjectName)\"
8        >
9        <UserMacro
10                Name="RootDir"
11                Value="$(SolutionDir)..\..\"
12        />
13        <UserMacro
14                Name="LibDir"
15                Value="$(RootDir)..\lib_dist\vc8\dependencies\$(SolutionName)\"
16        />
17</VisualStudioPropertySheet>
Note: See TracBrowser for help on using the repository browser.