Search Results

Search found 2 results on 1 pages for 'feelfree'.

Page 1/1 | 1 

  • How to install kghostview

    - by feelfree
    In order to use kghostview, I download the page from here. After that, I run the following command: sudo dpkg -i kghostview_3.5.10-0ubuntu1~hardy1.1_i386.deb However, I have the following error messages: dpkg: dependency problems prevent configuration of kghostview: kghostview depends on gs; however: Package gs is not installed. kghostview depends on kdelibs4c2a (>= 4:3.5.8-1); however: Package kdelibs4c2a is not installed. kghostview depends on libqt3-mt (>= 3:3.3.8-b); however: Package libqt3-mt is not installed. dpkg: error processing kghostview (--install): dependency problems - leaving unconfigured It seems that I should also install some external packages such as gs, kdelibs4c2a and libqt3-mt. However, I do not have any idea of how to install them. I try the sudo apt-get install command, but fail. Any idea will be appreciated.

    Read the article

  • Increasing time resolution of BOOST::progress timer

    - by feelfree
    BOOST::progress_timer is a very useful class to measure the running time of a function. However, the default implementation of progress_timer is not accurate enough and a possible way of increasing time resolution is to reconstruct a new class as the following codes show: #include <boost/progress.hpp> #include <boost/static_assert.hpp> template<int N=2> class new_progress_timer:public boost::timer { public: new_progress_timer(std::ostream &os=std::cout):m_os(os) { BOOST_STATIC_ASSERT(N>=0 &&N<=10); } ~new_progress_timer(void) { try { std::istream::fmtflags old_flags = m_os.setf(std::istream::fixed,std::istream::floatfield); std::streamsize old_prec = m_os.precision(N); m_os<<elapsed()<<"s\n" <<std::endl; m_os.flags(old_flags); m_os.precison(old_prec); } catch(...) { } } private: std::ostream &m_os; }; However, when I compile the codes with VC10, the following error appear: 'precison' : is not a member of 'std::basic_ostream<_Elem,_Traits>' Any ideas? Thanks.

    Read the article

1