~vibhavp/ubuntu/saucy/urg/merge-from-debian

« back to all changes in this revision

Viewing changes to src/cpp/system/findFiles.h

  • Committer: Bazaar Package Importer
  • Author(s): Albert Huang
  • Date: 2011-05-20 11:33:03 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20110520113303-u8niofzwzcea0osk
Tags: 0.8.12-1
* New upstream release (closes: #624987)
* Add debian/watch file
* Bump standards-version to 3.9.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#ifndef QRK_FIND_FILES_H
2
 
#define QRK_FIND_FILES_H
3
 
 
4
 
/*!
5
 
  \file
6
 
  \brief �f�B���N�g���ȉ��̃t�@�C���T�����s��
7
 
 
8
 
  \author Satofumi KAMIMURA
9
 
 
10
 
  $Id: findFiles.h 1663 2010-02-01 07:17:58Z satofumi $
11
 
*/
12
 
 
13
 
#include <boost/xpressive/xpressive.hpp>
14
 
#include <vector>
15
 
#include <string>
16
 
 
17
 
 
18
 
namespace qrk
19
 
{
20
 
  /*!
21
 
    �f�B���N�g���ȉ��̃t�@�C���T�����s��
22
 
 
23
 
    \param[out] files ���t�������t�@�C��
24
 
    \param[in] root_path �T���̃��[�g�f�B���N�g��
25
 
    \param[in] pattern �t�@�C���̌����p�^�[��
26
 
 
27
 
    \return ���t�������t�@�C����
28
 
  */
29
 
  extern size_t findFiles(std::vector<std::string>& files,
30
 
                          const char* root_path,
31
 
                          const boost::xpressive::sregex pattern);
32
 
}
33
 
 
34
 
#endif /* !QRK_FIND_FILES_H */