OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Functions
ossimFontInformation.cpp File Reference
#include <iostream>
#include <sstream>
#include <ossim/base/ossimFontInformation.h>
#include <ossim/base/ossimKeywordlist.h>

Go to the source code of this file.

Functions

std::ostream & operator<< (std::ostream &out, const ossimFontInformation &rhs)
 

Function Documentation

◆ operator<<()

std::ostream& operator<< ( std::ostream &  out,
const ossimFontInformation rhs 
)

Definition at line 30 of file ossimFontInformation.cpp.

References ossimFontInformation::theFamilyName, ossimFontInformation::theFixedFlag, ossimFontInformation::thePointSize, and ossimFontInformation::theStyleName.

32 {
33  out << "Family name: " << rhs.theFamilyName
34  << "\nStyle name: " << rhs.theStyleName
35  << "\nPoint size: " << rhs.thePointSize
36  << "\nFixed flag: " << (rhs.theFixedFlag?"true":"false")
37  << std::endl;
38 
39  return out;
40 }