mirror of
				https://github.com/panda3d/panda3d.git
				synced 2025-11-03 12:02:54 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			901 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			901 B
		
	
	
	
		
			C++
		
	
	
	
	
	
// Filename: fileSystemInfo.cxx
 | 
						|
// Created by:  drose (20Jun11)
 | 
						|
//
 | 
						|
////////////////////////////////////////////////////////////////////
 | 
						|
//
 | 
						|
// PANDA 3D SOFTWARE
 | 
						|
// Copyright (c) Carnegie Mellon University.  All rights reserved.
 | 
						|
//
 | 
						|
// All use of this software is subject to the terms of the revised BSD
 | 
						|
// license.  You should have received a copy of this license along
 | 
						|
// with this source code in a file named "LICENSE."
 | 
						|
//
 | 
						|
////////////////////////////////////////////////////////////////////
 | 
						|
 | 
						|
#include "fileSystemInfo.h"
 | 
						|
 | 
						|
////////////////////////////////////////////////////////////////////
 | 
						|
//     Function: FileSystemInfo::output
 | 
						|
//       Access: Published
 | 
						|
//  Description: 
 | 
						|
////////////////////////////////////////////////////////////////////
 | 
						|
void FileSystemInfo::
 | 
						|
output(ostream &out) const {
 | 
						|
  out << "FileSystemInfo(" << _os_file_name << ", " << _file_start
 | 
						|
      << ", " << _file_size << ")";
 | 
						|
}
 |