Panda3D
 All Classes Functions Variables Enumerations
movieAudio.I
1 // Filename: movieAudio.I
2 // Created by: jyelon (02Jul07)
3 //
4 ////////////////////////////////////////////////////////////////////
5 //
6 // PANDA 3D SOFTWARE
7 // Copyright (c) Carnegie Mellon University. All rights reserved.
8 //
9 // All use of this software is subject to the terms of the revised BSD
10 // license. You should have received a copy of this license along
11 // with this source code in a file named "LICENSE."
12 //
13 ////////////////////////////////////////////////////////////////////
14 
15 ////////////////////////////////////////////////////////////////////
16 // Function: MovieAudio::get_filename
17 // Access: Published
18 // Description: Returns the movie's filename. A movie is not
19 // guaranteed to have a filename, if not, then this
20 // function returns a null filename.
21 ////////////////////////////////////////////////////////////////////
22 INLINE const Filename &MovieAudio::
23 get_filename() const {
24  return _filename;
25 }
26 
const Filename & get_filename() const
Returns the movie's filename.
Definition: movieAudio.I:23
The name of a file, such as a texture file or an Egg file.
Definition: filename.h:44