source: NonGTP/FCollada/Documentation/_f_c_d_image_8h-source.html @ 964

Revision 964, 7.0 KB checked in by igarcia, 18 years ago (diff)
Line 
1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2<html><head><meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
3<title>FCollada: FCDocument/FCDImage.h Source File</title>
4<link href="doxygen.css" rel="stylesheet" type="text/css">
5<link href="tabs.css" rel="stylesheet" type="text/css">
6</head><body>
7<!-- Generated by Doxygen 1.4.6-NO -->
8<div class="tabs">
9  <ul>
10    <li><a href="index.html"><span>Main&nbsp;Page</span></a></li>
11    <li><a href="modules.html"><span>Modules</span></a></li>
12    <li><a href="namespaces.html"><span>Namespaces</span></a></li>
13    <li><a href="classes.html"><span>Classes</span></a></li>
14    <li id="current"><a href="files.html"><span>Files</span></a></li>
15    <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li>
16  </ul></div>
17<div class="tabs">
18  <ul>
19    <li><a href="files.html"><span>File&nbsp;List</span></a></li>
20    <li><a href="globals.html"><span>File&nbsp;Members</span></a></li>
21  </ul></div>
22<h1>FCDocument/FCDImage.h</h1><a href="_f_c_d_image_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="comment">/*</span>
23<a name="l00002"></a>00002 <span class="comment">    Copyright (C) 2005-2006 Feeling Software Inc.</span>
24<a name="l00003"></a>00003 <span class="comment">    MIT License: http://www.opensource.org/licenses/mit-license.php</span>
25<a name="l00004"></a>00004 <span class="comment">*/</span>
26<a name="l00005"></a>00005 <span class="comment">/*</span>
27<a name="l00006"></a>00006 <span class="comment">    Based on the FS Import classes:</span>
28<a name="l00007"></a>00007 <span class="comment">    Copyright (C) 2005-2006 Feeling Software Inc</span>
29<a name="l00008"></a>00008 <span class="comment">    Copyright (C) 2005-2006 Autodesk Media Entertainment</span>
30<a name="l00009"></a>00009 <span class="comment">    MIT License: http://www.opensource.org/licenses/mit-license.php</span>
31<a name="l00010"></a>00010 <span class="comment">*/</span>
32<a name="l00011"></a>00011
33<a name="l00017"></a>00017 <span class="preprocessor">#ifndef _FCD_IMAGE_H_</span>
34<a name="l00018"></a>00018 <span class="preprocessor"></span><span class="preprocessor">#define _FCD_IMAGE_H_</span>
35<a name="l00019"></a>00019 <span class="preprocessor"></span>
36<a name="l00020"></a>00020 <span class="preprocessor">#include "<a class="code" href="_f_c_d_entity_8h.html">FCDocument/FCDEntity.h</a>"</span>
37<a name="l00021"></a>00021
38<a name="l00022"></a>00022 <span class="keyword">class </span><a class="code" href="class_f_c_document.html">FCDocument</a>;
39<a name="l00023"></a>00023
40<a name="l00036"></a><a class="code" href="class_f_c_d_image.html">00036</a> <span class="keyword">class </span>FCOLLADA_EXPORT <a class="code" href="class_f_c_d_image.html">FCDImage</a> : <span class="keyword">public</span> <a class="code" href="class_f_c_d_entity.html">FCDEntity</a>
41<a name="l00037"></a>00037 {
42<a name="l00038"></a>00038 <span class="keyword">private</span>:
43<a name="l00039"></a>00039     <a class="code" href="_f_u_object_type_8h.html#8124b8a8706cd10260f8cd5a7bd8e691">DeclareObjectType</a>;
44<a name="l00040"></a>00040
45<a name="l00041"></a>00041     fstring filename;
46<a name="l00042"></a>00042     uint32 width;
47<a name="l00043"></a>00043     uint32 height;
48<a name="l00044"></a>00044     uint32 depth;
49<a name="l00045"></a>00045
50<a name="l00046"></a>00046 <span class="keyword">public</span>:
51<a name="l00050"></a>00050     <a class="code" href="class_f_c_d_image.html">FCDImage</a>(<a class="code" href="class_f_c_document.html">FCDocument</a>* document);
52<a name="l00051"></a>00051
53<a name="l00054"></a>00054 <span class="keyword">virtual</span> ~<a class="code" href="class_f_c_d_image.html">FCDImage</a>();
54<a name="l00055"></a>00055
55<a name="l00059"></a><a class="code" href="class_f_c_d_image.html#137caaacfc6ee0f82a4f654e142f23ea">00059</a>     <span class="keyword">virtual</span> Type <a class="code" href="class_f_c_d_entity.html#bfd4312a7124f92364c1e6517c7e60ba">GetType</a>()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> IMAGE; }
56<a name="l00060"></a>00060
57<a name="l00066"></a><a class="code" href="class_f_c_d_image.html#6858c945bf5d58a4ce59162bdab1875a">00066</a>     <span class="keyword">const</span> fstring&amp; GetFilename()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> filename; }
58<a name="l00067"></a>00067
59<a name="l00073"></a><a class="code" href="class_f_c_d_image.html#9489bc2214865330b82029f949ceedf7">00073</a>     <span class="keywordtype">void</span> SetFilename(<span class="keyword">const</span> fstring&amp; _filename) { filename = _filename; }
60<a name="l00074"></a>00074
61<a name="l00080"></a><a class="code" href="class_f_c_d_image.html#9ff868bc5bcf26c3c861844522dd93d9">00080</a>     <span class="keyword">const</span> uint32&amp; GetWidth()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> width; }
62<a name="l00081"></a>00081
63<a name="l00087"></a><a class="code" href="class_f_c_d_image.html#1b095ed4b987f695fc4b742d4c4cfb5e">00087</a>     <span class="keywordtype">void</span> SetWidth(uint32 _width) { width = _width; }
64<a name="l00088"></a>00088
65<a name="l00094"></a><a class="code" href="class_f_c_d_image.html#d39e605dd085356561da4b407434a6ba">00094</a>     <span class="keyword">const</span> uint32&amp; GetHeight()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> height; }
66<a name="l00095"></a>00095
67<a name="l00101"></a><a class="code" href="class_f_c_d_image.html#ff423a44ea5f473505efc3e35773e980">00101</a>     <span class="keywordtype">void</span> SetHeight(uint32 _height) { height = _height; }
68<a name="l00102"></a>00102
69<a name="l00107"></a><a class="code" href="class_f_c_d_image.html#120503567eb788e5000a4d19bfd46f16">00107</a>     <span class="keyword">const</span> uint32&amp; GetDepth()<span class="keyword"> const </span>{ <span class="keywordflow">return</span> depth; }
70<a name="l00108"></a>00108
71<a name="l00113"></a><a class="code" href="class_f_c_d_image.html#bb4f63a3f2e886ad6bacb9be0ebab2d5">00113</a>     <span class="keywordtype">void</span> SetDepth(uint32 _depth) { depth = _depth; }
72<a name="l00114"></a>00114
73<a name="l00119"></a>00119 <span class="keyword">virtual</span> <a class="code" href="class_f_u_status.html">FUStatus</a> <a class="code" href="class_f_c_d_entity.html#8e32fcc93de76acc4b606db7b5b83890">LoadFromXML</a>(xmlNode* imageNode);
74<a name="l00120"></a>00120
75<a name="l00124"></a>00124 <span class="keyword">virtual</span> xmlNode* <a class="code" href="class_f_c_d_entity.html#b27f0c175c3f8fd7064cde48bcf1d7a0">WriteToXML</a>(xmlNode* parentNode) <span class="keyword">const</span>;
76<a name="l00125"></a>00125 };
77<a name="l00126"></a>00126
78<a name="l00127"></a>00127 <span class="preprocessor">#endif // _FCD_IMAGE_H_</span>
79</pre></div><hr size="1"><address style="align: right;"><small>Generated on Fri May 12 16:44:38 2006 for FCollada by&nbsp;
80<a href="http://www.doxygen.org/index.html">
81<img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.6-NO </small></address>
82</body>
83</html>
Note: See TracBrowser for help on using the repository browser.