All Downloads are FREE. Search and download functionalities are using the official Maven repository.

z3-z3-4.13.0.src.test.for_each_file.h Maven / Gradle / Ivy

The newest version!
/*++
Copyright (c) 2006 Microsoft Corporation

Module Name:

    foreach_file.h

Abstract:

    Traverse files in a directory that match a given suffix.
    Apply a method to each of the files.

Author:

    Nikolaj Bjorner (nbjorner) 2006-11-3.

Revision History:

--*/
#pragma once

#pragma once

struct for_each_file_proc {
    virtual bool operator()(const char* file_path) = 0;
};

bool for_each_file(for_each_file_proc& proc, const char* base, const char* suffix);
    






© 2015 - 2024 Weber Informatics LLC | Privacy Policy